home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / lib / emacs / 19.22 / lisp / startup.el < prev    next >
Lisp/Scheme  |  1993-11-19  |  17KB  |  443 lines

  1. ;;; startup.el --- process Emacs shell arguments
  2.  
  3. ;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc.
  4.  
  5. ;; Maintainer: FSF
  6. ;; Keywords: internal
  7.  
  8. ;; This file is part of GNU Emacs.
  9.  
  10. ;; GNU Emacs is free software; you can redistribute it and/or modify
  11. ;; it under the terms of the GNU General Public License as published by
  12. ;; the Free Software Foundation; either version 2, or (at your option)
  13. ;; any later version.
  14.  
  15. ;; GNU Emacs is distributed in the hope that it will be useful,
  16. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18. ;; GNU General Public License for more details.
  19.  
  20. ;; You should have received a copy of the GNU General Public License
  21. ;; along with GNU Emacs; see the file COPYING.  If not, write to
  22. ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  23.  
  24. ;;; Commentary:
  25.  
  26. ; These are processed only at the beginning of the argument list.
  27. ; -batch        execute noninteractively (messages go to stdout,
  28. ;             variable noninteractive set to t)
  29. ;             This option must be the first in the arglist.
  30. ;             Processed by `main' in emacs.c -- never seen by lisp
  31. ; -t file        Specify to use file rather than stdin/stdout
  32. ;             as the terminal.
  33. ;             This option must be the first in the arglist.
  34. ;             Processed by `main' in emacs.c -- never seen by lisp
  35. ; -nw            Inhibit the use of any window-system-specific display
  36. ;             code; use the current virtual terminal.
  37. ;             This option must be the first in the arglist.
  38. ;             Processed by `main' in emacs.c -- never seen by lisp
  39. ; -q            load no init file
  40. ; -no-init-file        same
  41. ; -u user        load user's init file
  42. ; -user user        same
  43. ; -debug-init        Don't catch errors in init file; let debugger run.
  44.  
  45. ; These are processed in the order encountered.
  46. ; -f function        execute function
  47. ; -funcall function    same
  48. ; -l file        load file
  49. ; -load file        same
  50. ; -insert file        same
  51. ; file            visit file
  52. ; -kill            kill (exit) emacs
  53.  
  54. ;;; Code:
  55.  
  56. (setq top-level '(normal-top-level))
  57.  
  58. (defvar command-line-processed nil "t once command line has been processed")
  59.  
  60. (defconst inhibit-startup-message nil
  61.   "*Non-nil inhibits the initial startup messages.
  62. This is for use in your personal init file, once you are familiar
  63. with the contents of the startup message.")
  64.  
  65. (defconst inhibit-default-init nil
  66.   "*Non-nil inhibits loading the `default' library.")
  67.  
  68. (defconst command-switch-alist nil
  69.   "Alist of command-line switches.
  70. Elements look like (SWITCH-STRING . HANDLER-FUNCTION).
  71. HANDLER-FUNCTION receives switch name as sole arg;
  72. remaining command-line args are in the variable `command-line-args-left'.")
  73.  
  74. (defvar command-line-functions nil    ;; lrs 7/31/89
  75.   "List of functions to process unrecognized command-line arguments.
  76. Each function should access the dynamically bound variables
  77. argi (the current argument) and command-line-args-left (the remaining
  78. arguments).  The function should return non-nil only if it recognizes and
  79. processes argi.  If it does so, it may consume successive arguments by
  80. altering command-line-args-left to remove them.")
  81.  
  82. (defvar before-init-hook nil
  83.   "Functions to call after handling urgent options but before loading init file.
  84. The frame system uses this to open frames to display messages while
  85. Emacs loads the user's initialization file.")
  86.  
  87. (defvar after-init-hook nil
  88.   "Functions to call after loading the init file (`~/.emacs').
  89. The call is not protected by a condition-case, so you can set `debug-on-error'
  90. in `.emacs', and put all the actual code on `after-init-hook'.")
  91.  
  92. (defvar term-setup-hook nil
  93.   "Functions to be called after loading terminal-specific lisp code.
  94. See `run-hooks'.  This variable exists for users to set,
  95. so as to override the definitions made by the terminal-specific file.
  96. Emacs never sets this variable itself.")
  97.  
  98. (defvar keyboard-type nil
  99.   "The brand of keyboard you are using.  This variable is used to define
  100. the proper function and keypad keys for use under X.  It is used in a
  101. fashion analogous to the environment value TERM.")
  102.  
  103. (defvar window-setup-hook nil
  104.   "Function called to initialize window system display.
  105. Emacs calls this after processing the command line arguments and loading
  106. the user's init file.
  107.  
  108. Users should not set this variable; use term-setup-hook instead.")
  109.  
  110. (defconst initial-major-mode 'lisp-interaction-mode
  111.   "Major mode command symbol to use for the initial *scratch* buffer.")
  112.  
  113. (defvar init-file-user nil
  114.   "Identity of user whose `.emacs' file is or was read.
  115. The value may be the null string or a string containing a user's name.
  116. If the value is a null string, it means that the init file was taken from
  117. the user that originally logged in.
  118.  
  119. In all cases, `(concat \"~\" init-file-user \"/\")' evaluates to the
  120. directory name of the directory where the `.emacs' file was looked for.")
  121.  
  122. (defvar site-run-file "site-start"
  123.   "File containing site-wide run-time initializations.
  124. This file is loaded at run-time before `~/.emacs'.  It contains inits
  125. that need to be in place for the entire site, but which, due to their
  126. higher incidence of change, don't make sense to load into emacs'
  127. dumped image.  Thus, the run-time load order is: 1. file described in
  128. this variable, if non-nil; 2. `~/.emacs'; 3. `default.el'.")
  129.  
  130. (defvar init-file-debug nil)
  131.  
  132. (defvar init-file-had-error nil)
  133.  
  134. (defun normal-top-level ()
  135.   (if command-line-processed
  136.       (message "Back to top level.")
  137.     (setq command-line-processed t)
  138.     (if (not (eq system-type 'vax-vms))
  139.     (progn
  140.       ;; If the PWD environment variable isn't accurate, delete it.
  141.       (let ((pwd (getenv "PWD")))
  142.         (and (stringp pwd)
  143.          ;; Use FOO/., so that if FOO is a symlink, file-attributes
  144.          ;; describes the directory linked to, not FOO itself.
  145.          (or (equal (file-attributes
  146.                  (concat (file-name-as-directory pwd) "."))
  147.                 (file-attributes
  148.                  (concat (file-name-as-directory default-directory)
  149.                      ".")))
  150.              (setq process-environment
  151.                (delete (concat "PWD=" pwd)
  152.                    process-environment)))))))
  153.     (setq default-directory (abbreviate-file-name default-directory))
  154.     (unwind-protect
  155.     (command-line)
  156.       ;; Do this again, in case .emacs defined more abbreviations.
  157.       (setq default-directory (abbreviate-file-name default-directory))
  158.       (run-hooks 'emacs-startup-hook)
  159.       (and term-setup-hook
  160.        (run-hooks 'term-setup-hook))
  161.       ;; Modify the initial frame based on what .emacs puts into
  162.       ;; ...-frame-alist.
  163.       (if (fboundp 'frame-notice-user-settings)
  164.       (frame-notice-user-settings))
  165.       ;; Now we know the user's default font, so add it to the menu.
  166.       (if (fboundp 'font-menu-add-default)
  167.       (font-menu-add-default))
  168.       (and window-setup-hook
  169.        (run-hooks 'window-setup-hook)))))
  170.  
  171. (defun command-line ()
  172.   ;; See if we should import version-control from the environment variable.
  173.   (let ((vc (getenv "VERSION_CONTROL")))
  174.     (cond ((eq vc nil))            ;don't do anything if not set
  175.       ((or (string= vc "t")
  176.            (string= vc "numbered"))
  177.        (setq version-control t))
  178.       ((or (string= vc "nil")
  179.            (string= vc "existing"))
  180.        (setq version-control nil))
  181.       ((or (string= vc "never")
  182.            (string= vc "simple"))
  183.        (setq version-control 'never))))
  184.  
  185.   ;;! This has been commented out; I currently find the behavior when
  186.   ;;! split-window-keep-point is nil disturbing, but if I can get used
  187.   ;;! to it, then it would be better to eliminate the option.
  188.   ;;! ;; Choose a good default value for split-window-keep-point.
  189.   ;;! (setq split-window-keep-point (> baud-rate 2400))
  190.  
  191.   ;; Read window system's init file if using a window system.
  192.   (if (and window-system (not noninteractive))
  193.       (load (concat term-file-prefix
  194.             (symbol-name window-system)
  195.             "-win")
  196.         ;; Every window system should have a startup file;
  197.         ;; barf if we can't find it.
  198.         nil t))
  199.  
  200.   (let ((done nil)
  201.     (args (cdr command-line-args)))
  202.  
  203.     ;; Figure out which user's init file to load,
  204.     ;; either from the environment or from the options.
  205.     (setq init-file-user (if noninteractive nil (user-login-name)))
  206.     ;; If user has not done su, use current $HOME to find .emacs.
  207.     (and init-file-user (string= init-file-user (user-real-login-name))
  208.      (setq init-file-user ""))
  209.  
  210.     ;; Process the command-line args, and delete the arguments
  211.     ;; processed.  This is consistent with the way main in emacs.c
  212.     ;; does things.
  213.     (while (and (not done) args)
  214.       (let ((argi (car args)))
  215.     (cond
  216.      ((or (string-equal argi "-q")
  217.           (string-equal argi "-no-init-file"))
  218.       (setq init-file-user nil
  219.         args (cdr args)))
  220.      ((or (string-equal argi "-u")
  221.           (string-equal argi "-user"))
  222.       (setq args (cdr args)
  223.         init-file-user (car args)
  224.         args (cdr args)))
  225.      ((string-equal argi "-no-site-file")
  226.       (setq site-run-file nil
  227.         args (cdr args)))
  228.      ((string-equal argi "-debug-init")
  229.       (setq init-file-debug t
  230.         args (cdr args)))
  231.      (t (setq done t)))))
  232.     
  233.     ;; Re-attach the program name to the front of the arg list.
  234.     (setcdr command-line-args args))
  235.  
  236.   ;; Under X Windows, this creates the X frame and deletes the terminal frame.
  237.   (if (fboundp 'frame-initialize)
  238.       (frame-initialize))
  239.   (if (fboundp 'face-initialize)
  240.       (face-initialize))
  241.  
  242.   (run-hooks 'before-init-hook)
  243.  
  244.   ;; Run the site-start library if it exists.  The point of this file is
  245.   ;; that it is run before .emacs.  There is no point in doing this after
  246.   ;; .emacs; that is useless.
  247.   (if site-run-file 
  248.       (load site-run-file t t))
  249.  
  250.   ;; Sites should not disable this.  Only individuals should disable
  251.   ;; the startup message.
  252.   (setq inhibit-startup-message nil)
  253.  
  254.   ;; Load that user's init file, or the default one, or none.
  255.   (let ((debug-on-error init-file-debug)
  256.     ;; This function actually reads the init files.
  257.     (inner
  258.      (function
  259.       (lambda ()
  260.         (if init-file-user
  261.         (progn (load (if (eq system-type 'vax-vms)
  262.                  "sys$login:.emacs"
  263.                    (concat "~" init-file-user "/.emacs"))
  264.                  t t t)
  265.                (or inhibit-default-init
  266.                (let ((inhibit-startup-message nil))
  267.                  ;; Users are supposed to be told their rights.
  268.                  ;; (Plus how to get help and how to undo.)
  269.                  ;; Don't you dare turn this off for anyone
  270.                  ;; except yourself.
  271.                  (load "default" t t)))))))))
  272.     (if init-file-debug
  273.     ;; Do this without a condition-case if the user wants to debug.
  274.     (funcall inner)
  275.       (condition-case error
  276.       (progn
  277.         (funcall inner)
  278.         (setq init-file-had-error nil))
  279.     (error (message "Error in init file: %s%s%s"
  280.             (get (car error) 'error-message)
  281.             (if (cdr error) ": ")
  282.             (mapconcat 'prin1-to-string (cdr error) ", "))
  283.            (setq init-file-had-error t)))))
  284.  
  285.   (run-hooks 'after-init-hook)
  286.  
  287.   ;; If *scratch* exists and init file didn't change its mode, initialize it.
  288.   (if (get-buffer "*scratch*")
  289.       (save-excursion
  290.     (set-buffer "*scratch*")
  291.     (if (eq major-mode 'fundamental-mode)
  292.         (funcall initial-major-mode))))
  293.   ;; Load library for our terminal type.
  294.   ;; User init file can set term-file-prefix to nil to prevent this.
  295.   (and term-file-prefix (not noninteractive) (not window-system)
  296.        (let ((term (getenv "TERM"))
  297.          hyphend)
  298.      (while (and term
  299.              (not (load (concat term-file-prefix term) t t)))
  300.        ;; Strip off last hyphen and what follows, then try again
  301.        (if (setq hyphend (string-match "[-_][^-_]+$" term))
  302.            (setq term (substring term 0 hyphend))
  303.          (setq term nil)))))
  304.  
  305.   ;; Process the remaining args.
  306.   (command-line-1 (cdr command-line-args))
  307.  
  308.   ;; If -batch, terminate after processing the command options.
  309.   (if noninteractive (kill-emacs t)))
  310.  
  311. (defun command-line-1 (command-line-args-left)
  312.   (or noninteractive (input-pending-p) init-file-had-error
  313.       (message (if (eq (key-binding "\C-h\C-p") 'describe-project)
  314.            "For information about the GNU Project and its goals, type C-h C-p."
  315.          (substitute-command-keys
  316.           "For information about the GNU Project and its goals, type \\[describe-project]."))))
  317.   (if (null command-line-args-left)
  318.       (cond ((and (not inhibit-startup-message) (not noninteractive)
  319.           ;; Don't clobber a non-scratch buffer if init file
  320.           ;; has selected it.
  321.           (string= (buffer-name) "*scratch*")
  322.           (not (input-pending-p)))
  323.          ;; If there are no switches to process, we might as well
  324.          ;; run this hook now, and there may be some need to do it
  325.          ;; before doing any output.
  326.          (and term-setup-hook
  327.           (run-hooks 'term-setup-hook))
  328.          ;; Don't let the hook be run twice.
  329.          (setq term-setup-hook nil)
  330.  
  331.          ;; It's important to notice the user settings before we
  332.          ;; display the startup message; otherwise, the settings
  333.          ;; won't take effect until the user gives the first
  334.          ;; keystroke, and that's distracting.
  335.          (if (fboundp 'frame-notice-user-settings)
  336.          (frame-notice-user-settings))
  337.  
  338.          (and window-setup-hook
  339.           (run-hooks 'window-setup-hook))
  340.          (setq window-setup-hook nil)
  341.          (unwind-protect
  342.          (progn
  343.            (insert (emacs-version)
  344.                "
  345. Copyright (C) 1993 Free Software Foundation, Inc.\n\n")
  346.            ;; If keys have their default meanings,
  347.            ;; use precomputed string to save lots of time.
  348.            (if (and (eq (key-binding "\C-h") 'help-command)
  349.                 (eq (key-binding "\C-xu") 'advertised-undo)
  350.                 (eq (key-binding "\C-x\C-c") 'save-buffers-kill-emacs)
  351.                 (eq (key-binding "\C-h\C-c") 'describe-copying)
  352.                 (eq (key-binding "\C-h\C-d") 'describe-distribution)
  353.                 (eq (key-binding "\C-h\C-w") 'describe-no-warranty)
  354.                 (eq (key-binding "\C-ht") 'help-with-tutorial))
  355.                (insert 
  356.        "Type C-h for help; C-x u to undo changes.  (`C-' means use CTRL key.)
  357. To kill the Emacs job, type C-x C-c.
  358. Type C-h t for a tutorial on using Emacs.
  359. Type C-h i to enter Info, which you can use to read GNU documentation.
  360.  
  361. GNU Emacs comes with ABSOLUTELY NO WARRANTY; type C-h C-w for full details.
  362. You may give out copies of Emacs; type C-h C-c to see the conditions.
  363. Type C-h C-d for information on getting the latest version.")
  364.              (insert (substitute-command-keys
  365.        "Type \\[help-command] for help; \\[advertised-undo] to undo changes.  (`C-' means use CTRL key.)
  366. To kill the Emacs job, type \\[save-buffers-kill-emacs].
  367. Type \\[help-with-tutorial] for a tutorial on using Emacs.
  368. Type \\[info] to enter Info, which you can use to read GNU documentation.
  369.  
  370. GNU Emacs comes with ABSOLUTELY NO WARRANTY; type \\[describe-no-warranty] for full details.
  371. You may give out copies of Emacs; type \\[describe-copying] to see the conditions.
  372. Type \\[describe-distribution] for information on getting the latest version.")))
  373.            (set-buffer-modified-p nil)
  374.            (sit-for 120))
  375.            (save-excursion
  376.          ;; In case the Emacs server has already selected
  377.          ;; another buffer, erase the one our message is in.
  378.          (set-buffer (get-buffer "*scratch*"))
  379.          (erase-buffer)
  380.          (set-buffer-modified-p nil)))))
  381.     (let ((dir default-directory)
  382.       (file-count 0)
  383.       first-file-buffer
  384.       (line 0))
  385.       (while command-line-args-left
  386.     (let ((argi (car command-line-args-left))
  387.           tem)
  388.       (setq command-line-args-left (cdr command-line-args-left))
  389.       (cond ((setq tem (assoc argi command-switch-alist))
  390.          (funcall (cdr tem) argi))
  391.         ((or (string-equal argi "-f")  ;what the manual claims
  392.              (string-equal argi "-funcall")
  393.              (string-equal argi "-e")) ; what the source used to say
  394.          (setq tem (intern (car command-line-args-left)))
  395.          (setq command-line-args-left (cdr command-line-args-left))
  396.          (funcall tem))
  397.         ((or (string-equal argi "-l")
  398.              (string-equal argi "-load"))
  399.          (let ((file (car command-line-args-left)))
  400.            ;; Take file from default dir if it exists there;
  401.            ;; otherwise let `load' search for it.
  402.            (if (file-exists-p (expand-file-name file))
  403.                (setq file (expand-file-name file)))
  404.            (load file nil t))
  405.          (setq command-line-args-left (cdr command-line-args-left)))
  406.         ((string-equal argi "-insert")
  407.          (or (stringp (car command-line-args-left))
  408.              (error "filename omitted from `-insert' option"))
  409.          (insert-file-contents (car command-line-args-left))
  410.          (setq command-line-args-left (cdr command-line-args-left)))
  411.         ((string-equal argi "-kill")
  412.          (kill-emacs t))
  413.         ((string-match "^\\+[0-9]+\\'" argi)
  414.          (setq line (string-to-int argi)))
  415.         (t
  416.          ;; We have almost exhausted our options. See if the
  417.          ;; user has made any other command-line options available
  418.          (let ((hooks command-line-functions);; lrs 7/31/89
  419.                (did-hook nil))
  420.            (while (and hooks
  421.                    (not (setq did-hook (funcall (car hooks)))))
  422.              (setq hooks (cdr hooks)))
  423.            (if (not did-hook)
  424.                ;; Ok, presume that the argument is a file name
  425.                (progn
  426.              (setq file-count (1+ file-count))
  427.              (cond ((= file-count 1)
  428.                 (setq first-file-buffer
  429.                       (find-file (expand-file-name argi dir))))
  430.                    (t
  431.                 (find-file-other-window (expand-file-name argi dir))))
  432.              (or (zerop line)
  433.                  (goto-line line))
  434.              (setq line 0))))))))
  435.       ;; If 3 or more files visited, and not all visible,
  436.       ;; show user what they all are.
  437.       (if (> file-count 2)
  438.       (or (get-buffer-window first-file-buffer)
  439.           (progn (other-window 1)
  440.              (buffer-menu)))))))
  441.  
  442. ;;; startup.el ends here
  443.